* net/network-stream.el (network-stream-open-starttls): Try using
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 6 Jul 2011 15:09:11 +0000 (17:09 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 6 Jul 2011 15:09:11 +0000 (17:09 +0200)
a plain connection even if the server offered STARTTLS, and we
kinda wanted to use it, if Emacs doesn't have any STARTTLS
capability.  This should make smtpmail.el work in slightly more
configurations.

lisp/ChangeLog
lisp/net/network-stream.el

index 0ca9c56fde0ad917b0732a486903747155b058fb..1c681342dabea3edb0fd29ed929522ddeeef7c11 100644 (file)
@@ -1,3 +1,11 @@
+2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * net/network-stream.el (network-stream-open-starttls): Try using
+       a plain connection even if the server offered STARTTLS, and we
+       kinda wanted to use it, if Emacs doesn't have any STARTTLS
+       capability.  This should make smtpmail.el work in slightly more
+       configurations.
+
 2011-07-06  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
index effba41c564be9c2e36a12cc535ee29c2ec6dc39..038794e117df2794c2086bf40258dc4eaf65812d 100644 (file)
@@ -281,18 +281,14 @@ functionality.
              (network-stream-command stream capability-command eo-capa))))
 
     ;; If TLS is mandatory, close the connection if it's unencrypted.
-    (when (and (or require-tls
-                  ;; The server said it was possible to do STARTTLS,
-                  ;; and we wanted to use it...
-                  (and starttls-command
-                       (plist-get parameters :use-starttls-if-possible)))
+    (when (and require-tls
               ;; ... but Emacs wasn't able to -- either no built-in
               ;; support, or no gnutls-cli installed.
               (eq resulting-type 'plain))
-         (setq error
-               (if require-tls
-                   "Server does not support TLS"
-                 "Server supports STARTTLS, but Emacs does not have support for it"))
+      (setq error
+           (if require-tls
+               "Server does not support TLS"
+             "Server supports STARTTLS, but Emacs does not have support for it"))
       (delete-process stream)
       (setq stream nil))
     ;; Return value: